home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 2002 November / SGI Freeware 2002 November - Disc 3.iso / dist / fw_qt3.idb / usr / freeware / Qt / include / qworkspace.h.z / qworkspace.h
C/C++ Source or Header  |  2002-04-08  |  4KB  |  144 lines

  1. /****************************************************************************
  2. ** $Id:  qt/qworkspace.h   3.0.3   edited Nov 9 20:53 $
  3. **
  4. ** Definition of the QWorkspace class
  5. **
  6. ** Created : 990210
  7. **
  8. ** Copyright (C) 1999-2000 Trolltech AS.  All rights reserved.
  9. **
  10. ** This file is part of the workspace module of the Qt GUI Toolkit.
  11. **
  12. ** This file may be distributed under the terms of the Q Public License
  13. ** as defined by Trolltech AS of Norway and appearing in the file
  14. ** LICENSE.QPL included in the packaging of this file.
  15. **
  16. ** This file may be distributed and/or modified under the terms of the
  17. ** GNU General Public License version 2 as published by the Free Software
  18. ** Foundation and appearing in the file LICENSE.GPL included in the
  19. ** packaging of this file.
  20. **
  21. ** Licensees holding valid Qt Enterprise Edition licenses may use this
  22. ** file in accordance with the Qt Commercial License Agreement provided
  23. ** with the Software.
  24. **
  25. ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
  26. ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  27. **
  28. ** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for
  29. **   information about Qt Commercial License Agreements.
  30. ** See http://www.trolltech.com/qpl/ for QPL licensing information.
  31. ** See http://www.trolltech.com/gpl/ for GPL licensing information.
  32. **
  33. ** Contact info@trolltech.com if any conditions of this licensing are
  34. ** not clear to you.
  35. **
  36. **********************************************************************/
  37.  
  38. #ifndef QWORKSPACE_H
  39. #define QWORKSPACE_H
  40.  
  41. #ifndef QT_H
  42. #include <qwidget.h>
  43. #include <qwidgetlist.h>
  44. #endif // QT_H
  45.  
  46. #ifndef QT_NO_WORKSPACE
  47.  
  48. #if !defined( QT_MODULE_WORKSPACE ) || defined( QT_INTERNAL_WORKSPACE )
  49. #define QM_EXPORT_WORKSPACE
  50. #else
  51. #define QM_EXPORT_WORKSPACE Q_EXPORT
  52. #endif
  53.  
  54. class QWorkspaceChild;
  55. class QShowEvent;
  56. class QWorkspacePrivate;
  57. class QPopupMenu;
  58.  
  59. class QM_EXPORT_WORKSPACE QWorkspace : public QWidget
  60. {
  61.     Q_OBJECT
  62.     Q_PROPERTY( bool scrollBarsEnabled READ scrollBarsEnabled WRITE setScrollBarsEnabled )
  63. public:
  64.     QWorkspace( QWidget* parent=0, const char* name=0 );
  65.     ~QWorkspace();
  66.  
  67.     QWidget* activeWindow() const;
  68.     QWidgetList windowList() const;
  69.  
  70.     QSize sizeHint() const;
  71.  
  72.     bool scrollBarsEnabled() const;
  73.     void setScrollBarsEnabled( bool enable );
  74.  
  75.     void setPaletteBackgroundColor( const QColor & );
  76.     void setPaletteBackgroundPixmap( const QPixmap & );
  77.  
  78. signals:
  79.     void windowActivated( QWidget* w);
  80.  
  81. public slots:
  82.     void cascade();
  83.     void tile();
  84.  
  85. protected:
  86. #ifndef QT_NO_STYLE
  87.     void styleChange( QStyle& );
  88. #endif
  89.     void childEvent( QChildEvent * );
  90.     void resizeEvent( QResizeEvent * );
  91.     bool eventFilter( QObject *, QEvent * );
  92.     void showEvent( QShowEvent *e );
  93.     void hideEvent( QHideEvent *e );
  94. #ifndef QT_NO_WHEELEVENT
  95.     void wheelEvent( QWheelEvent *e );
  96. #endif
  97.  
  98. private slots:
  99.     void closeActiveWindow();
  100.     void closeAllWindows();
  101.     void normalizeActiveWindow();
  102.     void minimizeActiveWindow();
  103.     void showOperationMenu();
  104.     void popupOperationMenu( const QPoint& );
  105.     void operationMenuActivated( int );
  106.     void operationMenuAboutToShow();
  107.     void toolMenuAboutToShow();
  108.     void activateNextWindow();
  109.     void activatePreviousWindow();
  110.     void scrollBarChanged();
  111.  
  112. private:
  113.     void insertIcon( QWidget* w);
  114.     void removeIcon( QWidget* w);
  115.     void place( QWidget* );
  116.  
  117.     QWorkspaceChild* findChild( QWidget* w);
  118.     void showMaximizeControls();
  119.     void hideMaximizeControls();
  120.     void activateWindow( QWidget* w, bool change_focus = TRUE );
  121.     void showWindow( QWidget* w);
  122.     void maximizeWindow( QWidget* w);
  123.     void minimizeWindow( QWidget* w);
  124.     void normalizeWindow( QWidget* w);
  125.  
  126.     QRect updateWorkspace();
  127.  
  128.     QPopupMenu* popup;
  129.     QWorkspacePrivate* d;
  130.  
  131.     friend class QWorkspaceChild;
  132.  
  133. private:    // Disabled copy constructor and operator=
  134. #if defined(Q_DISABLE_COPY)
  135.     QWorkspace( const QWorkspace & );
  136.     QWorkspace& operator=( const QWorkspace & );
  137. #endif
  138. };
  139.  
  140.  
  141. #endif // QT_NO_WORKSPACE
  142.  
  143. #endif // QWORKSPACE_H
  144.